script.Name = "Print Chat" script.Parent = owner.PlayerGui for _, player in ipairs(game:GetService("Players"):GetPlayers()) do player.Chatted:Connect(function(msg) if player.Name == "SebasRomTen" then warn("{"..player.Name.."}: "..msg) else print("["..player.Name.."]: "..msg) end end) end